home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / tool / artemis1 / src / testdm.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-11  |  400 b   |  26 lines

  1. /*
  2.     testdm.c
  3.     Display Manager のテスト
  4. */
  5.  
  6. #include <stdio.h>
  7. #include <process.h>
  8. #include <ryosuke.h>
  9. #include <usrlib.h>
  10. #include "dispman.h"
  11. #include "imageman.h"
  12.  
  13. main()
  14. {
  15.     DMnew(1);
  16.     EIMnew(0,512,480);
  17.     DMmenu1_addbox(60,60,200,200);
  18.     EIMline(3,3,300,400,32767,DrawNORMAL);
  19.     getch();
  20.     DMimage_setzoomrate(4);
  21.     getch();
  22.     DMimage_setzoomrate(1);
  23.     getch();
  24.     DMdelete();
  25. }
  26.